home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ultraseek_detect.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  64 lines

  1. #
  2. # Copyright 2001 by Noam Rathaus <noamr@securiteam.com> 
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. #
  7.  
  8. if(description)
  9. {
  10.  script_id(10791);
  11.  script_bugtraq_id(1866, 874);
  12.  script_version ("$Revision: 1.7 $");
  13.  script_cve_id("CVE-1999-0996", "CVE-2000-1019");
  14.  
  15.  name["english"] = "Ultraseek Web Server Detect";
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "
  19. Ultraseek Web Server is running on this host. 
  20. Ultraseek has been known to contain security vulnerabilities ranging from 
  21. Buffer Overflows to Cross Site Scripting issues.
  22.  
  23. Solution: Make sure you are running the latest version of the Ultraseek 
  24. Web Server or disable it if you do not use it.
  25.  
  26. Additional information:
  27. http://www.securiteam.com/cgi-bin/htsearch?config=htdigSecuriTeamwords=Ultraseek
  28.  
  29. Risk factor : Low";
  30.  
  31.  script_description(english:desc["english"]);
  32.  
  33.  summary["english"] = "Ultraseek Web Server Detect";
  34.  script_summary(english:summary["english"]);
  35.  
  36.  script_category(ACT_GATHER_INFO);
  37.  
  38.  family["english"] = "General";
  39.  script_family(english:family["english"]);
  40.  
  41.  script_copyright(english:"This script is Copyright (C) 2001 SecuriTeam");
  42.  script_dependencie("find_service.nes");
  43.  script_require_ports("Services/www", 8765);
  44.  exit(0);
  45. }
  46.  
  47. #
  48. # The script code starts here
  49. #
  50.  include("http_func.inc");
  51.  
  52.  port = get_kb_item("Services/www");
  53.  if (!port) port = 8765;
  54.  
  55.  if (get_port_state(port))
  56.  {
  57.    banner = get_http_banner(port:port);
  58.    if(!banner)exit(0);
  59.    if ("Server: Ultraseek" >< banner)
  60.    {
  61.     security_warning(port);
  62.    }
  63.  }
  64.